home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / DU Folder / DU Selection FW / Includes / DUList.h next >
Encoding:
Text File  |  1995-10-25  |  1.0 KB  |  41 lines  |  [TEXT/MPS ]

  1. //    Copyright © 1995 Apple Computer, Inc. All rights reserved.
  2. //    Release Version:    $ 1.0 d11 $
  3.  
  4. #ifndef DULIST_H
  5. #define DULIST_H
  6.  
  7. //=======================================================================
  8. #ifndef DUSELECTABLE_H
  9. #include "DUSelectable.h"    // DU_MSelectable
  10. #endif
  11.  
  12. #ifndef FWORDCOL_H
  13. #include "FWOrdCol.h"        // FW_CPrivOrderedCollection
  14. #endif
  15.  
  16. //===============================================================
  17. class FW_CLASS_ATTR DU_CList : public FW_CPrivOrderedCollection {
  18. public:
  19.                             DU_CList();
  20.     virtual                 ~DU_CList();
  21. // new member
  22.     virtual DU_MSelectable*    FirstItem();
  23. };
  24.  
  25. //===============================================================
  26. class FW_CLASS_ATTR DU_CListIterator {
  27. public:
  28.                         DU_CListIterator(DU_CList* list);
  29.                         ~DU_CListIterator();
  30.     DU_MSelectable*        First();
  31.     DU_MSelectable*        Next();
  32.     DU_MSelectable*        Last();
  33.     DU_MSelectable*        Previous();
  34.     FW_Boolean            IsNotComplete();
  35. private:
  36.     FW_COrderedCollectionIterator    fImplementation;
  37. };
  38.  
  39. //===============================================================
  40. #endif
  41.